home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / image / tsutlg11.zip / TSUTLG.INF < prev    next >
Text File  |  1996-10-26  |  5KB  |  134 lines

  1.                            - 1 -
  2. Sat 26-October-1996
  3.  
  4. About TSUTLG in General                        (All rights reserved)
  5. =======================
  6.  
  7. This is the seventh package in my utilities series of currently five
  8. packages. The others are TSUTIL, TSUTLB, TSUTLC, TSUTLD, TSUTLE and
  9. TSUTLF.
  10.  
  11. ┌───────────────────────────────────────────────────────────────┐
  12. │ Please do not distribute any part of this package separately. │
  13. └───────────────────────────────────────────────────────────────┘
  14.  
  15. This package may be used and distributed freely for NON-COMMERCIAL,
  16. NON-INSTITUTIONAL, PRIVATE purposes, provided it is not changed in
  17. any way. (Repacking with another method is ok, though.) For ANY
  18. other usage, such as use in a business enterprise or a university,
  19. contact the author for registration. Uploading to bulletin boards is
  20. encouraged. Please do not distribute any part of this package
  21. separately.
  22.  
  23. The programs are under development. Comments and contacts are
  24. solicited. If you have any comments or bug reports, please do not
  25. hesitate to use electronic mail for communication.
  26.  
  27. The author shall not be liable to the user for any direct, indirect
  28. or consequential loss arising from the use of, or inability to use,
  29. any program or file howsoever caused. No warranty is given that the
  30. programs will work under all circumstances.
  31.  
  32. Timo Salmi (email: ts@uwasa.fi WWW: http://uwasa.fi/~ts/)
  33. Professor of Accounting and Business Finance
  34. Faculty of Accounting & Industrial Management
  35. University of Vaasa
  36. P.O. BOX 700, FIN-65101 Vaasa, Finland
  37.  
  38.  
  39. Timo Salmi UTiLities set G, release 1.1 (TSUTLG11) includes the
  40. *    *     ** *          *          * *
  41. following utility-type programs:
  42.  
  43. TSUTLG11        7th set of utilities, Timo Salmi
  44. Filename        Comment
  45. --------        --------------------------------
  46. BACKDEMO.BAT    High intensity background demo
  47. BACKGRND.EXE    Enable 16 background text colors
  48. FILE_ID.DIZ     Brief characterization of tsutlg
  49. SAMESIZE.EXE    Browse disk for samesized files
  50. TSPROG.INF      A list of programs of Timo Salmi
  51. TSUTLG.INF      A document and a readme
  52. TSUTLG.NWS      News announcements about tsutlg
  53. VAASA.INF       Info: Finland, Vaasa, U of Vaasa
  54. ----            ------             ------  -----
  55. 0008
  56.  
  57.  
  58.                            - 2 -
  59.  
  60. BACKGRND (Ver. 1.0)  Enable 16 background text colors
  61. ===================
  62.  
  63. Usage:  BACKGRND [/blink] [/high] [/status] [/help] [/quiet]
  64.   enable Blinking ─┘        │       │         │       │
  65.  High intensity background ─┘       │         │       │
  66.  Status of the blink/intensity bit ─┘   Help ─┘       │
  67.                           Quiet, no author's caption ─┘
  68.  
  69. If you have an EGA or better in your PC, there are sixteen different
  70. text foreground color options, but only eight background color
  71. options in the text mode. The number of background colors can be
  72. increased to sixteen by manipulating the high intensity / blinking
  73. bit. If this bit is set off, then there will be sixteen possible
  74. background colors, but blinking will be disabled. If the bit is on
  75. (as is the default), blinking is enabled, but the high intensity
  76. background option is disables and the background colors are limited
  77. to the eight.
  78.  
  79. This program can be used the set the value of the high intensity /
  80. blinking bit. If no switches are set, the program acts as a toggle
  81. between the two modes.
  82.  
  83. Is this just a trivial demonstration utility? Not entirely. Some
  84. programs alter the status of high intensity / blink enable bit
  85. without restoring the original status afterwards. This can be
  86. somewhat annoying. If you launch such a program from a batch file you
  87. can easily set things back the way you want in the batch. For
  88. example the following program (the version number may change)
  89.  
  90.  52289 Aug 25 02:03 ftp://garbo.uwasa.fi/pc/filecopy/tcpy203c.zip
  91.  tcpy203c.zip Speedy multi-volume file transfer program, good, P.leRiche
  92.  
  93. turns the blink enable off while on is the default I prefer. I use
  94. the following batch to call Turbo Copy
  95.  
  96.   @echo off
  97.   set switch_=
  98.   :_next
  99.   if "%1"=="" goto _doit
  100.   set switch_=%switch_% %1
  101.   shift
  102.   goto _next
  103.   :_doit
  104.   if not "%switch_%"=="" f:\progs\box\tc%switch_% /z-
  105.   if "%switch_%"=="" f:\progs\box\tc
  106.   set switch_=
  107.   c:\tools\backgrnd /blink /quiet
  108.   :_out
  109.  
  110. The switches in BACKGRND.EXE have the following synonyms:
  111.   /blink  -blink  /bl -bl
  112.   /high   -high   /hi -hi
  113.   /status -status /st -st
  114.   /help   -help   /h  -h
  115.   /quiet  -quiet  /q  -q
  116.  
  117.  
  118. SAMESIZE (Ver 1.0)  Browse disk for samesized files
  119. ==================
  120.  
  121. Usage: SAMESIZE [Device:] [SecondDevice:] [/h] [/s]
  122.                                       help ─┘    │
  123.   Size only, without datestamp as the criterion ─┘
  124.  
  125. This program searches through disk(s) for multiple occurrences of
  126. files of same size and datetime stamps. The multiple file runs will
  127. be displayed on the screen with the path, date and time information.
  128.  
  129. You can redirect the output to a file.
  130. E.g. use SAMESIZE C: /S > C.LOG
  131.  
  132. SAMESIZE can handle up to 8191 files. If there are more files than
  133. that, the program will finally abort cleanly.
  134.